home *** CD-ROM | disk | FTP | other *** search
/ Programming a Multiplayer FPS in DirectX / Programming a Multiplayer FPS in DirectX (Companion CD).iso / DirectX / dxsdk_oct2004.exe / dxsdk.exe / Utilities / Dx_Setenv.cmd < prev    next >
Encoding:
Text File  |  2004-05-31  |  450 b   |  20 lines

  1. if "%cpu%" == "AMD64" Goto X64_ENV
  2. if "%cpu%" == "i386" Goto  I386_ENV
  3. Goto Exit
  4.  
  5.  
  6. :X64_ENV
  7. Set Lib=%DXSDK_DIR%Lib\X64;%Lib%
  8. Set Include=%DXSDK_DIR%Include;%Include%
  9. Set Path=%DXSDK_DIR%Utilities\X64;%Path%
  10. echo Dx9 X64 Enviroment is Now enabled.
  11. Goto Exit
  12. :I386_ENV
  13. Set Lib=%DXSDK_DIR%Lib;%Lib%
  14. Set Include=%DXSDK_DIR%Include;%Include%
  15. Set Path=%DXSDK_DIR%Utilities;%Path%
  16. echo Dx9 x86 Enviroment is Now enabled.
  17. Goto Exit
  18.  
  19.  
  20. :Exit